home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / TRCKR.PAK / DIALOGS.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  65 lines

  1. // dialogs.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CHandleSize dialog
  16.  
  17. class CHandleSize : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CHandleSize(CWnd* pParent = NULL);  // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CHandleSize)
  25.     enum { IDD = IDD_HANDLE_SIZE };
  26.     int     m_nHandleSize;
  27.     //}}AFX_DATA
  28.  
  29. // Implementation
  30. protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.  
  33.     // Generated message map functions
  34.     //{{AFX_MSG(CHandleSize)
  35.         // NOTE: the ClassWizard will add member functions here
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CMinSize dialog
  41.  
  42. class CMinSize : public CDialog
  43. {
  44. // Construction
  45. public:
  46.     CMinSize(CWnd* pParent = NULL); // standard constructor
  47.  
  48. // Dialog Data
  49.     //{{AFX_DATA(CMinSize)
  50.     enum { IDD = IDD_MIN_SIZE };
  51.     int     m_nMinX;
  52.     int     m_nMinY;
  53.     //}}AFX_DATA
  54.  
  55. // Implementation
  56. protected:
  57.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  58.  
  59.     // Generated message map functions
  60.     //{{AFX_MSG(CMinSize)
  61.         // NOTE: the ClassWizard will add member functions here
  62.     //}}AFX_MSG
  63.     DECLARE_MESSAGE_MAP()
  64. };
  65.